2005-05-17 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
+ the popup posted if the button is released over the cellview.
+ This matches the behaviour of other combo box implementations.
+ (#171378)
+
* gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
when recursing. (#153682, Felipe Heidrich)
2005-05-17 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
+ the popup posted if the button is released over the cellview.
+ This matches the behaviour of other combo box implementations.
+ (#171378)
+
* gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
when recursing. (#153682, Felipe Heidrich)
2005-05-17 Matthias Clasen <mclasen@redhat.com>
+ * gtk/gtkcombobox.c (gtk_combo_box_list_button_released): Keep
+ the popup posted if the button is released over the cellview.
+ This matches the behaviour of other combo box implementations.
+ (#171378)
+
* gdk/gdkwindow.c (gdk_window_set_bg_pattern): Adjust offsets
when recursing. (#153682, Felipe Heidrich)
if (ewidget != combo_box->priv->tree_view)
{
- if (ewidget == combo_box->priv->button &&
+ if ((ewidget == combo_box->priv->button ||
+ ewidget == combo_box->priv->box) &&
!popup_in_progress &&
gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (combo_box->priv->button)))
{
}
/* released outside treeview */
- if (ewidget != combo_box->priv->button)
+ if (ewidget != combo_box->priv->button &&
+ ewidget != combo_box->priv->box)
{
gtk_combo_box_popdown (combo_box);